Finds items with the specified key value.

Namespace:  C1.LiveLinq.Indexing
Assembly:  C1.LiveLinq (in C1.LiveLinq.dll)

Syntax

C#
public abstract IndexQuery<T, TKey> Find(
	TKey key
)
Visual Basic
Public MustOverride Function Find ( _
	key As TKey _
) As IndexQuery(Of T, TKey)

Parameters

key
Type: TKey
The key value to search for.

Return Value

An object enumerating items having the specified key value.

Implements

IIndexScanner<(Of <(<'T, TKey>)>)>..::..Find(TKey)

See Also